home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
lib
/
posix
/
dup2.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-19
|
133b
|
8 lines
#include <lib.h>
PUBLIC int dup2(fd, fd2)
int fd, fd2;
{
return(callm1(FS, DUP, fd + 0100, fd2, 0, NIL_PTR, NIL_PTR, NIL_PTR));
}